home *** CD-ROM | disk | FTP | other *** search
/ Windo! 3 / Windo! 3.iso / オンラインソフト / オンラインソフト130 / 創る / MailDiv104.LZH / Unit7.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-17  |  2.2 KB  |  59 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit7H
  3. #define Unit7H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm7 : public TForm
  12. {
  13. __published:    // IDE 管理のコンポーネント
  14.         TGroupBox *GroupBox1;
  15.         TButton *Button1;
  16.         TLabel *Label3;
  17.         TButton *Button4;
  18.         TLabel *Label4;
  19.         TButton *Button5;
  20.         TGroupBox *GroupBox2;
  21.         TShape *Shape1;
  22.         TButton *Button2;
  23.         TButton *Button6;
  24.         TGroupBox *GroupBox3;
  25.         TEdit *Edit1;
  26.         TButton *Button3;
  27.         TButton *Button7;
  28.         TButton *Button8;
  29.         TButton *Button9;
  30.         TButton *Button10;
  31.         TLabel *Label1;
  32.         void __fastcall FormShow(TObject *Sender);
  33.         void __fastcall Button8Click(TObject *Sender);
  34.         void __fastcall Button9Click(TObject *Sender);
  35.         void __fastcall Button10Click(TObject *Sender);
  36.         void __fastcall Button1Click(TObject *Sender);
  37.         void __fastcall Button4Click(TObject *Sender);
  38.         void __fastcall Button5Click(TObject *Sender);
  39.         void __fastcall Button6Click(TObject *Sender);
  40.         void __fastcall Button2Click(TObject *Sender);
  41.         void __fastcall Button7Click(TObject *Sender);
  42.         void __fastcall Button3Click(TObject *Sender);
  43.         void __fastcall FormCreate(TObject *Sender);
  44.         void __fastcall FormKeyDown(TObject *Sender, WORD &Key,
  45.           TShiftState Shift);
  46. private:    // ユーザー宣言
  47.         TColor __fastcall getNewColor(Classes::TComponent* AOwner,
  48.                TColor defaultcolor);
  49. public:        // ユーザー宣言
  50.         void __fastcall setAllColor(TColor color[7]);
  51.         void __fastcall getAllColor(TColor color[7]);
  52.  
  53.         __fastcall TForm7(TComponent* Owner);
  54. };
  55. //---------------------------------------------------------------------------
  56. extern PACKAGE TForm7 *Form7;
  57. //---------------------------------------------------------------------------
  58. #endif
  59.